From 27b7b77f9ed9b1a8c56e591df0ab39aa4309a7a4 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 25 Jun 2014 12:38:35 +0100 Subject: [PATCH] tools/Makefile: Build only a subset of things for rump kernels Override the set of tools/ subdirectories for rump kernel builds. Signed-off-by: Ian Jackson Acked-by: Ian Campbell --- tools/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/Makefile b/tools/Makefile index f4aa200da8..e558e6e8cf 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -43,6 +43,10 @@ SUBDIRS-y += pygrub SUBDIRS-$(OCAML_TOOLS) += ocaml endif +ifeq ($(CONFIG_RUMP),y) +SUBDIRS-y := include libxc xenstore +endif + # For the sake of linking, set the sys-root ifneq ($(CROSS_COMPILE),) CROSS_BIN_PATH ?= /usr/$(CROSS_COMPILE:-=)/bin -- 2.30.2